home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 2: CDPD 1
/
Almathera Ten on Ten - Disc 2: CDPD 1.iso
/
pd
/
301-325
/
319
/
cnewssrc
/
uupc.lzh
/
include
/
alloc.h
next >
Wrap
C/C++ Source or Header
|
1989-06-30
|
602b
|
20 lines
#ifndef ALLOC_H
#define ALLOC_H
#ifndef notdef
extern char *malloc(), *realloc(), *emalloc();
extern char *nemalloc(), *strsave(), *str3save();
#else /* notdef */
/* setup for UT debugging malloc */
#define MALLOC_TRACE
#define TRACE
#include "malloc.h" /* defines CSRIMALLOC */
extern char *_nemalloc(), *_strsave(), *_str3save();
#define nemalloc(x) _nemalloc((x), __FILE__, __LINE__)
#define strsave(x) _strsave((x), __FILE__, __LINE__) /* TODO: conflict with ma
loc.h; fix */
#define str3save(x, y, z) _str3save((x), y, z, __FILE__, __LINE__)
#endif /* notdef */
#endif /* ALLOC_H */